diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-03 00:18:54 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-03 00:18:54 -0400 |
commit | 8f23e297475a5becdd65065d5ff7e5bf489ee7db (patch) | |
tree | a2ee6d62043a8a4386ff251d1383cdaf98dfea67 | |
parent | Add git branch to `$PS1` in `dotfiles/home/.bashrc` (diff) | |
download | dotfiles.old-8f23e297475a5becdd65065d5ff7e5bf489ee7db.tar.gz dotfiles.old-8f23e297475a5becdd65065d5ff7e5bf489ee7db.tar.bz2 dotfiles.old-8f23e297475a5becdd65065d5ff7e5bf489ee7db.zip |
Switch to 72-char limits instead of 74
Modify `dotfiles/home/.nanorc` to wrap at 72 chars, and update the
formatting of other files.
-rw-r--r-- | home/.bashrc | 14 | ||||
-rw-r--r-- | home/.nanorc | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/home/.bashrc b/home/.bashrc index 6f6711e..8a08934 100644 --- a/home/.bashrc +++ b/home/.bashrc | |||
@@ -8,7 +8,7 @@ if [[ $- != *i* ]] ; then | |||
8 | fi | 8 | fi |
9 | 9 | ||
10 | 10 | ||
11 | ######################################################################### | 11 | ######################################################################## |
12 | # PS1 - Primary prompt displayed before each command | 12 | # PS1 - Primary prompt displayed before each command |
13 | #################################################### | 13 | #################################################### |
14 | # The PS1 prompt is constructed piece-by-piece by concatenating each | 14 | # The PS1 prompt is constructed piece-by-piece by concatenating each |
@@ -20,7 +20,7 @@ fi | |||
20 | # | 20 | # |
21 | # Example of what the prompt should look like: | 21 | # Example of what the prompt should look like: |
22 | # [1] [2023-03-28 16:02:55] [user host] [(stable) /etc/portage] > | 22 | # [1] [2023-03-28 16:02:55] [user host] [(stable) /etc/portage] > |
23 | ######################################################################### | 23 | ######################################################################## |
24 | # Set colors for easy reading | 24 | # Set colors for easy reading |
25 | PS1_COLOR_RESET="\[\e[0m\]" | 25 | PS1_COLOR_RESET="\[\e[0m\]" |
26 | PS1_COLOR_GREY="\[\e[90m\]" | 26 | PS1_COLOR_GREY="\[\e[90m\]" |
@@ -68,19 +68,19 @@ PS1+="$PS1_COLOR_MAIN[$PS1_COLOR_RESET" # [ | |||
68 | PS1+="\$(parse_git_branch) " # (BRANCH) | 68 | PS1+="\$(parse_git_branch) " # (BRANCH) |
69 | PS1+="$PS1_COLOR_CYAN\w$PS1_COLOR_RESET" # DIR | 69 | PS1+="$PS1_COLOR_CYAN\w$PS1_COLOR_RESET" # DIR |
70 | PS1+="$PS1_COLOR_MAIN] > $PS1_COLOR_RESET" # ] > | 70 | PS1+="$PS1_COLOR_MAIN] > $PS1_COLOR_RESET" # ] > |
71 | ######################################################################### | 71 | ######################################################################## |
72 | 72 | ||
73 | 73 | ||
74 | ######################################################################### | 74 | ######################################################################## |
75 | # PS2 - Secondary prompt displayed when a command needs more input | 75 | # PS2 - Secondary prompt displayed when a command needs more input |
76 | ################################################################## | 76 | ################################################################## |
77 | PS2=" > " | 77 | PS2=" > " |
78 | ######################################################################### | 78 | ######################################################################## |
79 | 79 | ||
80 | 80 | ||
81 | ######################################################################### | 81 | ######################################################################## |
82 | # Aliases | 82 | # Aliases |
83 | ######### | 83 | ######### |
84 | alias wget="wget -c --tries=10 --timeout=10 --waitretry=30s" | 84 | alias wget="wget -c --tries=10 --timeout=10 --waitretry=30s" |
85 | alias ls="exa -1aFghlU --color=always --sort=name --time-style=iso" | 85 | alias ls="exa -1aFghlU --color=always --sort=name --time-style=iso" |
86 | ######################################################################### | 86 | ######################################################################## |
diff --git a/home/.nanorc b/home/.nanorc index 568c39a..2327dd7 100644 --- a/home/.nanorc +++ b/home/.nanorc | |||
@@ -1,8 +1,8 @@ | |||
1 | # ~/.nanorc | 1 | # ~/.nanorc |
2 | 2 | ||
3 | ## Character limit | 3 | ## Character limit |
4 | set fill 74 # limit line-length to 74 chars | 4 | set fill 72 # limit line-length to 72 chars |
5 | set guidestripe 74 # show a guide line at 74 chars | 5 | set guidestripe 73 # show a guide line at 73 chars |
6 | 6 | ||
7 | ## Line-wrapping | 7 | ## Line-wrapping |
8 | set atblanks # wrap line at blanks | 8 | set atblanks # wrap line at blanks |